summaryrefslogtreecommitdiff
path: root/src/functiondisplay.cpp
blob: ab37a086f26d9002753b3080ee5eafc69d1cc4a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include "functiondisplay.h"

#include <bu/sio.h>
#include "gamestate.h"

using namespace Bu;

FunctionDisplay::FunctionDisplay()
{
}

FunctionDisplay::~FunctionDisplay()
{
}

void FunctionDisplay::call( class GameState &gState )
{
//	Bu::String s = gState.popDeref().to( Variable::tString ).getString();

//	sio << format( s ) << sio.nl;

	Variable v = gState.popDeref();
	sio << "Display:  " << v << sio.nl;
}

Bu::String FunctionDisplay::format( const Bu::String &sSrc )
{
	Bu::String sRet;
	bool bWs = true;
	Bu::String::const_iterator i = sSrc.begin();

	while( i )
	{
		for(; i; i++ )
		{
			if( *i != ' ' && *i != '\t' && *i != '\n' && *i != '\r' )
				break;
		}
		for(; i; i++ )
		{
			if( i == ' ' || i == '\t' || *i == '\n' || *i == '\r' )
			{
				sRet.append(' ');
				break;
			}
			
			sRet.append( *i );
		}
	}

	return sRet;
}